From: Florian Eckert Date: Thu, 8 Apr 2021 13:06:51 +0000 (+0200) Subject: luci-app-dockerman: add log_level i18n translation X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22/%22https:/collectd.org/%22?a=commitdiff_plain;h=0e29a0ecc686c0c19e9a1964e60b687844fd517b;p=project%2Fluci.git luci-app-dockerman: add log_level i18n translation Signed-off-by: Florian Eckert --- diff --git a/applications/luci-app-dockerman/luasrc/model/cbi/dockerman/overview.lua b/applications/luci-app-dockerman/luasrc/model/cbi/dockerman/overview.lua index cc4b287cba..3308d64ac5 100644 --- a/applications/luci-app-dockerman/luasrc/model/cbi/dockerman/overview.lua +++ b/applications/luci-app-dockerman/luasrc/model/cbi/dockerman/overview.lua @@ -130,11 +130,11 @@ if nixio.fs.access("/usr/bin/dockerd") then o = s:option(ListValue, "log_level", translate("Log Level"), translate('Set the logging level')) - o:value("debug", "debug") - o:value("", "info") -- This is the default debug level from the deamon is optin is not set - o:value("warn", "warn") - o:value("error", "error") - o:value("fatal", "fatal") + o:value("debug", translate("Debug")) + o:value("", translate("Info")) -- This is the default debug level from the deamon is optin is not set + o:value("warn", translate("Warning")) + o:value("error", translate("Error")) + o:value("fatal", translate("Fatal")) o.rmempty = true o:depends("remote_endpoint", 0)